a7662fe914a827a9f311855a09bce483056cec6e,component/webui/src/main/java/org/exoplatform/social/webui/connections/UIInvitations.java,UIInvitations,init,#,127
Before Change
currentLoadIndex = 0;
loadingCapacity = RECEIVED_INVITATION_PER_PAGE;
peopleList = new ArrayList<Identity>();
List<Identity> excludedIdentityList = new ArrayList<Identity>();
excludedIdentityList.add(Utils.getViewerIdentity());
uiProfileUserSearch.getProfileFilter().setExcludedIdentityList(excludedIdentityList);
//setPeopleList(loadPeople(currentLoadIndex, loadingCapacity));
} catch (Exception e) {
After Change
currentLoadIndex = 0;
loadingCapacity = RECEIVED_INVITATION_PER_PAGE;
peopleList = new ArrayList<Identity>();
uiProfileUserSearch.getProfileFilter().setViewerIdentity(Utils.getViewerIdentity());
} catch (Exception e) {
LOG.error(e.getMessage(), e);
}